home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / lang / add_message.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  2003-11-18  |  630b  |  25 lines

  1. #!/bin/bash
  2. # $Id: add_message.sh,v 2.0 2003/11/18 15:20:38 nijel Exp $
  3. #
  4. # Shell script that adds a message to all message files (Lem9)
  5. #
  6. # Example:  add_message.sh '$strNewMessage' 'new message contents'
  7. #
  8.  
  9. if [ $# -ne 2 ] ; then
  10.     echo "usage: add_message.sh '\$strNewMessage' 'new message contents'"
  11.     exit 1
  12. fi
  13.     
  14. for file in *.inc.php
  15. do
  16.         echo $file " "
  17.         grep -v '?>' ${file} > ${file}.new
  18.         echo "$1 = '"$2"';  //to translate" >> ${file}.new
  19.         echo "?>" >> ${file}.new
  20.         rm $file
  21.         mv ${file}.new $file
  22. done
  23. echo " "
  24. echo "Message added to all message files (including english)"
  25.